This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 300
Filter events on server side, in order to decrease load on Marathon #541
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please checkout #539. We should also use the lightweight events. |
drewkerrigan
approved these changes
Jan 29, 2018
timcharper
approved these changes
Jan 29, 2018
Should we remove the client side filtering eventType filtering logic now ? It seems redundant. |
|
This was referenced Feb 6, 2018
manriquecms
pushed a commit
to manriquecms/marathon-lb
that referenced
this pull request
Feb 7, 2018
…2iq-archive#541) * Filter events on server side, in order to decrease load on Marathon * Use lightweight Marathon events.
justinrlee
pushed a commit
that referenced
this pull request
Feb 7, 2018
* Filter events on server side, in order to decrease load on Marathon (#541) * Filter events on server side, in order to decrease load on Marathon * Use lightweight Marathon events. * Fix build status link (#548) * Check for MESOS_TCP (#509) * Add long backend proxypass path test (#499) * Add long backend proxypass path test * Fix flake problems
manriquecms
added a commit
to Stratio/marathon-lb-sec
that referenced
this pull request
Feb 8, 2018
* Change README.md (d2iq-archive#487) Proposed change to README.md to warn users about use of zdd.py on a production environment. * Add container syslogd support and fix 'Waiting for Pids' race condition (d2iq-archive#505) * Add additional debug logs in reload * Adding syslog support * Make syslogd and retry reload configurable * Update documentation * Make infinite retries optional, run syslogd with runsvdir * Update base container to resolve CVE-2017-12424 (d2iq-archive#506) * Update base container to resolve CVE-2017-12424 Updated base container to debian:buster to resolve this attack vector. https://security-tracker.debian.org/tracker/CVE-2017-12424 * delete unnecessary swp file * Fix grammar in tini section of README.md (d2iq-archive#442) * exclude bad apps from generated config (d2iq-archive#481) exclude bad apps from generated config * Fix reconnect logging and timing depending on error type (d2iq-archive#523) * Fix reconnect logging and timing depending on error type * cleanup flake8 errors * add missing build-essential * start at most one thread and close connection when reconnecting * Filter events on server side, in order to decrease load on Marathon (d2iq-archive#541) * Filter events on server side, in order to decrease load on Marathon * Use lightweight Marathon events. * Update official Marathon-LB version to 1.11.3 * Fix error with bash run script, percentage symbol was not escaped
drewkerrigan
pushed a commit
that referenced
this pull request
Apr 4, 2018
* Filter events on server side, in order to decrease load on Marathon (#541) * Filter events on server side, in order to decrease load on Marathon * Use lightweight Marathon events. * Fix build status link (#548) * Check for MESOS_TCP (#509) * Add long backend proxypass path test (#499) * Add long backend proxypass path test * Fix flake problems
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We introduced lightweight events with MARATHON_EE-1673. These do not
include the complete groups and make the events much smaller. This
should not only ease the consumption but also the workload for
Marathon. Furthermore Marathon LB should only request the events
it actually needs.
This patch should close MARATHON-8036 and MARATHON-8047.